func runtime.persistentalloc
18 uses
runtime (current package)
iface.go#L67: m = (*itab)(persistentalloc(unsafe.Sizeof(itab{})+uintptr(len(inter.mhdr)-1)*goarch.PtrSize, 0, &memstats.other_sys))
malloc.go#L741: l2 = (*[1 << arenaL2Bits]*heapArena)(persistentalloc(unsafe.Sizeof(*l2), goarch.PtrSize, nil))
malloc.go#L754: r = (*heapArena)(persistentalloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
malloc.go#L766: newArray := (*notInHeap)(persistentalloc(size, goarch.PtrSize, &memstats.gcMiscSys))
malloc.go#L947: return persistentalloc(size, align, &memstats.other_sys)
malloc.go#L1393: func persistentalloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
mbitmap.go#L1032: debugPtrmask.data = (*byte)(persistentalloc(1<<20, 1, &memstats.other_sys))
mbitmap.go#L1570: x := (*[1 << 30]byte)(persistentalloc(n+1, 1, &memstats.buckhash_sys))[:n+1]
mcheckmark.go#L46: bitmap = (*checkmarksMap)(persistentalloc(unsafe.Sizeof(*bitmap), 0, &memstats.gcMiscSys))
mfinal.go#L92: finc = (*finblock)(persistentalloc(_FinBlockSize, 0, &memstats.gcMiscSys))
mfixalloc.go#L89: f.chunk = uintptr(persistentalloc(uintptr(f.nalloc), 0, f.stat))
mprof.go#L174: b := (*bucket)(persistentalloc(size, 0, &memstats.buckhash_sys))
mranges.go#L170: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), goarch.PtrSize, sysStat))
mranges.go#L297: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), goarch.PtrSize, a.sysStat))
mranges.go#L367: ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), goarch.PtrSize, b.sysStat))
mspanset.go#L105: newSpine := persistentalloc(newCap*goarch.PtrSize, cpu.CacheLineSize, &memstats.gcMiscSys)
mspanset.go#L286: return (*spanSetBlock)(persistentalloc(unsafe.Sizeof(spanSetBlock{}), cpu.CacheLineSize, &memstats.gcMiscSys))
netpoll.go#L623: mem := persistentalloc(n*pdSize, 0, &memstats.other_sys)